home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Magazine Collection 2001
/
Delphi Magazine Collection 20001 (2001).iso
/
DISKS
/
Issue35
/
pageprnt
/
PAGEPRNT.ZIP
/
PagePrnt
/
TestIt
/
PROJECT1.DPR
< prev
next >
Wrap
Text File
|
1997-09-23
|
247b
|
15 lines
program Project1;
uses
Forms,
Unit1 in 'Unit1.pas' {MainForm},
PagePrnt in '\PROJECTS\PagePrnt\PagePrnt.pas';
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TMainForm, MainForm);
Application.Run;
end.